Skip to main content

NumberFormattedAsString

Type

operator

Summary

Formats a numeric value as a string

Syntax

<Operand> formatted as string

Description

Use NumberFormattedAsString when you want to manipulate a numeric value as text.

Parameters

NameTypeDescription

Operand

An expression that evaluates to a number.

Examples

variable tString as String
variable tNum as Number
put 5 into tNum
put tNum formatted as string into tString -- tString contains "5"
Thank you for your feedback!

Was this page helpful?